home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Top 200 Programs
/
Top 200 Programs.iso
/
Bob8
/
THOMPSON
/
LIBERTY
/
PRODUCT
/
LB14W.EXE
/
STARTUP.BAS
< prev
next >
Wrap
BASIC Source File
|
1996-02-02
|
1KB
|
33 lines
'STARTUP.BAS
nomainwin
notice "This is the default startup handler! Take a look at " + _
"STARTUP.BAS for instructions on using the runtime engine."
end
'ABOUT STARTUP.BAS
'==================================================================
'The Liberty BASIC runtime engine will look for a file called
'STARTUP.TKN if no other *.TKN file is specified in the command
'line. The STARTUP.TKN file included in the Liberty BASIC
'package is created from this STARTUP.BAS file. If desired,
'you could create a simple STARTUP.BAS file that would start up
'your application for you. It might look like this:
nomainwin
run "myprog.tkn"
end
'RUNTIME PASSWORD PROTECTION
'==================================================================
'To use the runtime engine, you must place a PASSWORD statement
'before the first SCAN or INPUT statement in your program. Your
'password is based on your name. Both are provided to you on a
'printed sheet included with the Liberty BASIC package. The name
'and password must be spelled exactly as presented on the included
'sheet.
'Here is an example
password "Your Name", "?password?"